Lab8


4531203821_4531204421  นาย จิรวุฒิ จึงศิรกุลวิทย์ และ นาย จิรเดช วทัญญุตานนท์ (3/9/2545 (11:44:36))
(SM=4, CM=8, ST=9, KY=0, TR=00:29)

TestScript
Mini-Quiz :  (0.0 คะแนน)

JLab>javac Rational.java
JLab>
JLab>java Selftest
>>JLabIO->recripocate : ok
>>JLabIO->recripocate : ok
>>JLabIO->multiply : ok
>>JLabIO->multiply : ok
>>JLabIO->multiply : ok
>>JLabIO->multiply : ok
>>JLabIO->addMatrix : ok
>>JLabIO->addMatrix : ok

>>JLab:<POINT>8</POINT>
JLab>

ได้ 8 คะแนน
Source Code
// 2110101 : Lab8 (2545)
// dept. of computer engineering
// Chulalongkorn Univ.

import jlab.JLabIO;

public class Rational {
  int numerator;
  int denominator;

  //--------------------------------------------------------
  // an object method returning the recripocal of "this"
  // rational number.
  public Rational recripocate() {
    int n = this.denominator;
    int d = this.numerator;
    
    return new Rational(n, d);

  }
  //--------------------------------------------------------
  // an object method returning the result of "this"
  // rational number multiplied by a.
  public Rational multiply(Rational a) {
    int x = gcd(this.numerator, a.denominator);
    this.numerator /= x;
    a.denominator /= x;
    int y = gcd(this.denominator, a.numerator);
    this.denominator /= y;
    a.numerator /= y;
    int n = this.numerator * a.numerator;
    int d = this.denominator * a.denominator;
    return new Rational(n, d);

  }
  //--------------------------------------------------------
  // a class method for multiplying two matrices of rational
  // numbers (matrices a and b).
  public static Rational[][] mulMatrix(Rational[][] a, Rational[][] b) {
    Rational sum = new Rational();
    Rational[][] x = new Rational[a.length][b[0].length];
    for (int k = 0; k < a.length; k++) {
      for (int i = 0; i < b[0].length; i++) {
        for (int j = 0; j < b.length; j++) {
        sum = sum.add(a[k][j].multiply(b[j][i]));}
        x[k][i] = sum;
        sum = new Rational();}}
    return x;

  }
  //--------------------------------------------------------
  // you can use the main method for your own testing (optional).
  public static void main(String[] args) {
    



  }
  //--------------------------------------------------------
  public Rational() {
    this(0, 1);
  }
  public Rational(int n, int d) {
    int g = gcd(n, d);
    n = n / g;
    d = d / g;
    this.numerator = n;
    this.denominator = d;
  }
  public Rational add(Rational a) {
    int g = gcd(this.denominator, a.denominator);
    int d = this.denominator / g * a.denominator;
    int n = this.numerator * d / this.denominator +
            a.numerator * d / a.denominator;
    return new Rational(n, d);
  }
  public String toString() {
    return this.numerator + "/" + this.denominator;
  }
  public static int gcd(int a, int b) {
    return b == 0 ? a : gcd(b, a % b);
  }
}